home *** CD-ROM | disk | FTP | other *** search
/ IBM OEM Software Product … CD For PC Manufacturers / IBM OEM Software - Product Sampler CD for PC Manufacturers.iso / InternetIntranets / Notes / LOTUS006.DSK / ORGCONST.LSS < prev    next >
Text File  |  1996-11-25  |  3KB  |  61 lines

  1. '-------- CONSTANTS FROM ORGANIZER
  2.  
  3. '--- Values for NoticeType (ORSMSGTYPE)
  4. Const ORS_MSGTYPE_INVITE        = "I"  ' original meeting request send
  5. Const ORS_MSGTYPE_RESCHEDULE    = "U"  ' originator updated place or time
  6. Const ORS_MSGTYPE_CANCEL        = "C"  ' originator cancelled the meeting
  7. Const ORS_MSGTYPE_DELEGATING    = "D"  ' delegated (notifies originator)
  8. Const ORS_MSGTYPE_STATUSUPDATE  = "S"  ' originator send status update
  9. Const ORS_MSGTYPE_CONFIRMATION  = "N"  ' originator confirmed the meeting
  10. Const ORS_MSGTYPE_COUNTERREJECT = "J"  ' originator declined counter proposal
  11.  
  12. Const ORS_MSGTYPE_ACCEPT        = "A"  ' accept meeting request
  13. Const ORS_MSGTYPE_REJECT        = "R"  ' reject meeting request
  14. Const ORS_MSGTYPE_DELEGATE      = "L"  ' delegated (notifies delegate)
  15. Const ORS_MSGTYPE_COUNTER       = "T"  ' counter-proposal (propose change)
  16. Const ORS_MSGTYPE_PENCILIN      = "P"  ' pencil in meeting request
  17.  
  18. '--- Values for OrgStatus (ORSATTSTATUS)
  19. Const ORS_STATUS_INVITED  = "1"        ' attendee invited
  20. Const ORS_STATUS_ACCEPTED = "2"        ' attendee accepted
  21. Const ORS_STATUS_PENCILIN = "3"        ' attendee penciled in
  22. Const ORS_STATUS_DECLINED = "4"        ' attendee declined
  23. Const ORS_STATUS_REMOVED  = "5"        ' attendee was removed
  24.  
  25. '--- Values for OrgState (ORSATTSTATE)
  26. Const ORS_STATE_NONE       = "0"       ' initial state
  27. Const ORS_STATE_ORIGINATOR = "1"       ' originator (chairman) of meeting
  28. Const ORS_STATE_DELEGATED  = "2"       ' set for delegator
  29. Const ORS_STATE_DELEGATE   = "3"       ' set for delegee
  30. Const ORS_STATE_GROUP      = "4"       ' set for a group
  31. Const ORS_STATE_ROOM       = "5"       ' set for a room
  32. Const ORS_STATE_RESOURCE   = "6"       ' set for a resource
  33.  
  34. '--- Values for Optional
  35. Const ORS_OPTIONAL_FALSE = "0"         ' required
  36. Const ORS_OPTIONAL_TRUE  = "1"         ' optional
  37.  
  38. '--- Values for OrdTable
  39. Const ORS_ITEM_CALENDAR    = "C0"
  40. Const ORS_ITEM_TODO        = "T0"
  41. Const ORS_ITEM_CALLS       = "H0"
  42. Const ORS_ITEM_PLANNER     = "P0"
  43. Const ORS_ITEM_ADDRESS     = "D0"
  44. Const ORS_ITEM_NOTEPAD     = "N0"
  45. Const ORS_ITEM_ANNIVERSARY = "A0"
  46.  
  47.  
  48. 'New Constants added for Notes
  49. Const CS_MONTH_JAN = "Jan"
  50. Const CS_MONTH_FEB = "Feb"
  51. Const CS_MONTH_MAR = "Mar"
  52. Const CS_MONTH_APR = "Apr"
  53. Const CS_MONTH_MAY = "May"
  54. Const CS_MONTH_JUNE = "June"
  55. Const CS_MONTH_JULY = "July"
  56. Const CS_MONTH_AUG = "Aug"
  57. Const CS_MONTH_SEPT = "Sept"
  58. Const CS_MONTH_OCT = "Oct"
  59. Const CS_MONTH_NOV = "Nov"
  60. Const CS_MONTH_DEC = "Dec"
  61.